home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / include / mpw / pwd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  202 b   |  16 lines

  1. #ifndef __pwd_h
  2. #define __pwd_h
  3.  
  4. #include <sys/types.h>
  5.  
  6. struct passwd {
  7.   char *pw_name;
  8.   uid_t pw_uid;
  9.   gid_t pw_gid;
  10.   char *pw_dir;
  11.   char *pw_shell;
  12.   char *pw_passwd;
  13. };
  14.  
  15. #endif /* ! __pwd_h */
  16.